I am using this code to upload image files
<input type="file" id="add_image_or_video" name="add_image_or_video" accept="image/*" multiple="multiple">
this shows this on mobile
I wanted to show the same album but including video using this code:
<input type="file" id="add_image_or_video" name="add_image_or_video" accept="image/*, video/*" multiple="multiple">
but what is appearing is this enter image description here
basically I wanted to achieve a facebook like image and video selection much like the first photo I included but I wanted to include the video. Here is the facebook file selection screenshot: enter image description here
I do not know if I need to use javascript to achieve this so I will include javascript in the tags for now and will remove it if I learn that I do not need javascript or jQuery